Keywords

Keywords are used for flow control statements. These words define the statement operations. These keywords are reserved for use in calculation language. The keywords cannot be used as variable field names. Keywords are not case sensitive.

Keyword

Flow Control

IF

Begins a conditional statement (Optional)

AND

Used within an IF statement (Optional)

OR

Used within an IF statement (Optional)

ELSE

Used within an IF statement (Optional)

ELSEIF

Used within an IF statement (Optional)

THEN

Used within an IF statement (Optional)

END

Ends an IF statement

WHILE...WEND

Executes a series of statements, as long as a given condition is true

BREAK

Used to exit a While…Wend statement block

CONTINUE

Restarts a While…Wend statement loop

GOTO

Jumps to a label within a calculation

RETURN

Tells the calculation to return a result

CALL

Temporarily calls another calculation file

CHAIN

Permanently calls another calculation file